home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks '96 / ObiWan DCMD Source Dist / LineTypes.p next >
Encoding:
Text File  |  1996-06-22  |  177 b   |  15 lines  |  [TEXT/CWIE]

  1. unit LineTypes;
  2.  
  3. interface
  4.  
  5.     const
  6.         lines_max = 12;
  7.         width_max = 80;
  8.  
  9.     type
  10.         lineStr = string[width_max];
  11.         linesArray = array[1..lines_max] of lineStr;
  12.  
  13. implementation
  14.  
  15. end.